home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / gnu / gnushell / examples / test.c < prev   
C/C++ Source or Header  |  1995-11-25  |  74b  |  12 lines

  1. int f1(void)
  2. {
  3.   return 2;
  4. }
  5.  
  6. main()
  7. {
  8.   int a;
  9.  
  10.   a = f1();
  11. }
  12.